Multimap

In computer science, a multimap (sometimes also multihash) is a generalization of a map or associative array abstract data type in which more than one value may be associated with and returned for a given key. Both map and multimap are particular cases of containers (see for example C++ Standard Template Library containers). Often the multimap is implemented as a map with lists or sets as the map values.

Contents

Examples

Language support

C++'s Standard Template Library provides the multimap container for the sorted multimap using a self-balancing binary search tree,[1] and SGI's STL extension provides the hash_multimap container, which implements a multimap using a hash table.[2]

Apache Commons Collections provides a MultiMap interface for Java.[3] It also provides a MultiValueMap implementing class that makes a MultiMap out of a Map object and a type of Collection.[4]

Google Collections also provides an interface Multimap and implementations.[5]

Scala language's API also provides Multimap and implementations[6]

See also

References

  1. ^ "multimap<Key, Data, Compare, Alloc>". Standard Template Library Programmer's Guide. Silicon Graphics International. http://www.sgi.com/tech/stl/Multimap.html. 
  2. ^ "hash_multiset<Key, HashFcn, EqualKey, Alloc>". Standard Template Library Programmer's Guide. Silicon Graphics International. http://www.sgi.com/tech/stl/hash_multiset.html. 
  3. ^ "Interface MultiMap". Commons Collections 3.2.1 API, Apache Commons. http://commons.apache.org/collections/api-release/org/apache/commons/collections/MultiMap.html. 
  4. ^ "Class MultiValueMap". Commons Collections 3.2.1 API, Apache Commons. http://commons.apache.org/collections/api-release/org/apache/commons/collections/map/MultiValueMap.html. 
  5. ^ "Interface Multimap<K,V>". Google Collections Library 1.0. http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Multimap.html. 
  6. ^ "Scala.collection.mutable.MultiMap". Scala stable API. http://www.scala-lang.org/api/current/scala/collection/mutable/MultiMap.html.